home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / etc / bluetooth / hcid.conf next >
Text File  |  2006-05-15  |  1KB  |  65 lines

  1. #
  2. # HCI daemon configuration file.
  3. #
  4.  
  5. # HCId options
  6. options {
  7.     # Automatically initialize new devices
  8.     autoinit yes;
  9.  
  10.     # Security Manager mode
  11.     #   none - Security manager disabled
  12.     #   auto - Use local PIN for incoming connections
  13.     #   user - Always ask user for a PIN
  14.     #
  15.     security user;
  16.  
  17.     # Pairing mode
  18.     #   none  - Pairing disabled
  19.     #   multi - Allow pairing with already paired devices
  20.     #   once  - Pair once and deny successive attempts
  21.     pairing multi;
  22.  
  23.     # PIN helper
  24.     pin_helper /usr/bin/bluepin;
  25.  
  26.     # D-Bus PIN helper
  27.     #dbus_pin_helper;
  28. }
  29.  
  30. # Default settings for HCI devices
  31. device {
  32.     # Local device name
  33.     #   %d - device id
  34.     #   %h - host name
  35.     name "BlueZ (%d)";
  36.  
  37.     # Local device class
  38.     class 0x3e0100;
  39.  
  40.     # Default packet type
  41.     #pkt_type DH1,DM1,HV1;
  42.  
  43.     # Inquiry and Page scan
  44.     iscan enable; pscan enable;
  45.  
  46.     # Default link mode
  47.     #   none   - no specific policy 
  48.     #   accept - always accept incoming connections
  49.     #   master - become master on incoming connections,
  50.     #            deny role switch on outgoing connections
  51.     lm accept;
  52.  
  53.     # Default link policy
  54.     #   none    - no specific policy
  55.     #   rswitch - allow role switch
  56.     #   hold    - allow hold mode
  57.     #   sniff   - allow sniff mode
  58.     #   park    - allow park mode
  59.     lp rswitch,hold,sniff,park;
  60.  
  61.     # Authentication and Encryption (Security Mode 3)
  62.     #auth enable;
  63.     #encrypt enable;
  64. }
  65.